home *** CD-ROM | disk | FTP | other *** search
- //----------------------------------------------------------------------------------------
- // Structure for storing game statatistics
- //----------------------------------------------------------------------------------------
-
- struct GameStats
- {
- unsigned int Score; // The player's score
- unsigned int Lines; // Total Line Count
- unsigned int Level; // The current level
-
- //Keeps track of the number of times each tetramino type was in play
- unsigned int TetTypeCount[TET_MAX_TYPES];
- unsigned int TetTotal; // Total tetraminoes used in play for calc averages
-
- };// GameStats
-